crypto/tls.cipherSuite.flags (field)

11 uses

	crypto/tls (current package)
		cipher_suites.go#L143: 	flags  int
		common.go#L1216: 			if c.flags&suiteECDHE != 0 {
		common.go#L1219: 			if vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
		common.go#L1293: 		if c.flags&suiteECDHE == 0 {
		common.go#L1296: 		if c.flags&suiteECSign != 0 {
		common.go#L1305: 		if vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
		handshake_client.go#L106: 		if hello.vers < VersionTLS12 && suite.flags&suiteTLS12 != 0 {
		handshake_server.go#L384: 	if c.flags&suiteECDHE != 0 {
		handshake_server.go#L388: 		if c.flags&suiteECSign != 0 {
		handshake_server.go#L398: 	if hs.c.vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
		prf.go#L93: 		if suite.flags&suiteSHA384 != 0 {